const time.hasMonotonic
20 uses
time (current package)
format.go#L531: if t.wall&hasMonotonic != 0 {
time.go#L153: hasMonotonic = 1 << 63
time.go#L171: if t.wall&hasMonotonic != 0 {
time.go#L182: if t.wall&hasMonotonic != 0 {
time.go#L186: t.wall = t.wall&nsecMask | uint64(dsec)<<nsecShift | hasMonotonic
time.go#L216: if t.wall&hasMonotonic != 0 {
time.go#L227: if t.wall&hasMonotonic == 0 {
time.go#L232: t.wall |= hasMonotonic | uint64(sec-minWall)<<nsecShift
time.go#L243: if t.wall&hasMonotonic == 0 {
time.go#L251: if t.wall&u.wall&hasMonotonic != 0 {
time.go#L261: if t.wall&u.wall&hasMonotonic != 0 {
time.go#L273: if t.wall&u.wall&hasMonotonic != 0 {
time.go#L296: if t.wall&u.wall&hasMonotonic != 0 {
time.go#L868: if t.wall&hasMonotonic != 0 {
time.go#L885: if t.wall&u.wall&hasMonotonic != 0 {
time.go#L913: if t.wall&hasMonotonic != 0 {
time.go#L915: now = Time{hasMonotonic, runtimeNano() - startNano, nil}
time.go#L926: if t.wall&hasMonotonic != 0 {
time.go#L928: now = Time{hasMonotonic, runtimeNano() - startNano, nil}
time.go#L1120: return Time{hasMonotonic | uint64(sec)<<nsecShift | uint64(nsec), mono, Local}
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |